*/
#include "defs.h"
+#include "zconf.h"
#include "gbfile.h"
#include <assert.h>
fd = stdout;
}
SET_BINARY_MODE(fd);
- self->handle.gz = (void**)gzdopen(fileno(fd), openmode);
+ self->handle.gz = gzdopen(fileno(fd), openmode);
} else {
- self->handle.gz = (void**)gzopen(self->name, openmode);
+ self->handle.gz = gzopen(self->name, openmode);
}
if (self->handle.gz == NULL) {
FILE* std;
unsigned char* mem;
#if !ZLIB_INHIBITED
- gzFile* gz;
+ gzFile gz;
#endif
} handle;
char* name;
/* helpers */
-
+#if NEW_STRINGS
+#else
static char*
nmn4_concat(const char* arg0, ...)
{
return res;
}
+#endif
static void
nmn4_check_line(char* line)
static int count = 0;
static const int vitovtt_version = 3;
-static const size_t vitovtt_headersize = 16;
-static const size_t vitovtt_datasize = 32;
+// static const size_t vitovtt_headersize = 16;
+// static const size_t vitovtt_datasize = 32;
static const double vitovtt_latitudescale = 20000000.0;
static const double vitovtt_longitudescale = 10000000.0;